initial commit
[clinton/prusa3.git] / old stuff / printable-bushing.scad
1 // PRUSA Mendel
2 // Bushings
3 // GNU GPL v3
4 // Josef Průša
5 // josefprusa@me.com
6 // prusadjs.cz
7 // http://www.reprap.org/wiki/Prusa_Mendel
8 // http://github.com/prusajr/PrusaMendel
9
10 include <configuration.scad>
11
12 /**
13 * @id printable-bushing
14 * @name Printable Bushing
15 * @category Printed
16 */
17
18 rodsize = bushing_rodsize;
19 outerDiameter = bushing_outerDiameter;
20 lenght = bushing_lenght;
21 type = bushing_type;
22
23
24 module printable_bushing(){
25 translate(v = [0,0,0.5]){
26
27 cube(size = [22,10,0.5], center=true);
28 translate(v = [0,0,0.5]) cube(size = [20,2,0.5], center=true);
29 translate(v = [0,4,0.5]) cube(size = [20,2,0.5], center=true);
30 translate(v = [0,-4,0.5]) cube(size = [20,2,0.5], center=true);
31 }
32 }
33 printable_bushing();